home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Vault: The Gold Collection
/
Software Vault - The Gold Collection (American Databankers) (1993).ISO
/
cdr49
/
273_01.zip
/
CLR.CC
< prev
next >
Wrap
Text File
|
1993-04-04
|
343b
|
17 lines
#include <dos.h>
void clr(wattr)
/* CLear the screen using the attribute passed */
{
union REGS inregs;
inregs.h.bh = wattr;
inregs.h.cl = 0;
inregs.h.ch = 0;
inregs.h.dl = 79;
inregs.h.dh = 24;
inregs.h.al = 0;
inregs.h.ah = 6; /* do the scroll */
int86(0x10,&inregs,&inregs);
locate(0,0);
}